monad - определение. Что такое monad
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое monad - определение

WIKIMEDIA DISAMBIGUATION PAGE
Monads; Monad (symbol); Monad (disambiguation); Monad (mathematics)
Найдено результатов: 36
monad         
['m?nad, 'm??-]
¦ noun
1. technical a single unit; the number one.
2. Philosophy (in the philosophy of Leibniz) an indivisible and hence ultimately simple entity, e.g. an atom or a person.
3. Biology, dated a single-celled organism or a single cell.
Derivatives
monadic adjective
monadism noun (Philosophy).
Origin
C17: via late L. from Gk monas, monad- 'unit', from monos 'alone'.
monad         
n.
1.
Atom, molecule, ultimate particle, indivisible particle.
2.
(Zool.) Minute animacule.
Monad         
·noun A simple, minute organism; a primary cell, germ, or plastid.
II. Monad ·noun An ultimate atom, or simple, unextended point; something ultimate and indivisible.
III. Monad ·noun One of the smallest flangellate Infusoria; ·esp., the species of the genus Monas, and allied genera.
IV. Monad ·noun An atom or radical whose valence is one, or which can combine with, be replaced by, or exchanged for, one atom of hydrogen.
V. Monad ·noun The elementary and indestructible units which were conceived of as endowed with the power to produce all the changes they undergo, and thus determine all physical and spiritual phenomena.
monad         
<theory, functional programming> /mo'nad/ A technique from category theory which has been adopted as a way of dealing with state in functional programming languages in such a way that the details of the state are hidden or abstracted out of code that merely passes it on unchanged. A monad has three components: a means of augmenting an existing type, a means of creating a default value of this new type from a value of the original type, and a replacement for the basic application operator for the old type that works with the new type. The alternative to passing state via a monad is to add an extra argument and return value to many functions which have no interest in that state. Monads can encapsulate state, side effects, exception handling, global data, etc. in a purely lazily functional way. A monad can be expressed as the triple, (M, unitM, bindM) where M is a function on types and (using Haskell notation): unitM :: a -> M a bindM :: M a -> (a -> M b) -> M b I.e. unitM converts an ordinary value of type a in to monadic form and bindM applies a function to a monadic value after de-monadising it. E.g. a state transformer monad: type S a = State -> (a, State) unitS a = s0 -> (a, s0) m 'bindS' k = s0 -> let (a,s1) = m s0 in k a s1 Here unitS adds some initial state to an ordinary value and bindS applies function k to a value m. ('fun' is Haskell notation for using a function as an infix operator). Both m and k take a state as input and return a new state as part of their output. The construction m 'bindS' k composes these two state transformers into one while also passing the value of m to k. Monads are a powerful tool in functional programming. If a program is written using a monad to pass around a variable (like the state in the example above) then it is easy to change what is passed around simply by changing the monad. Only the parts of the program which deal directly with the quantity concerned need be altered, parts which merely pass it on unchanged will stay the same. In functional programming, unitM is often called initM or returnM and bindM is called thenM. A third function, mapM is frequently defined in terms of then and return. This applies a given function to a list of monadic values, threading some variable (e.g. state) through the applications: mapM :: (a -> M b) -> [a] -> M [b] mapM f [] = returnM [] mapM f (x:xs) = f x 'thenM' ( x2 -> mapM f xs 'thenM' ( xs2 -> returnM (x2 : xs2) )) (2000-03-09)
Monad (functional programming)         
  •  accessdate = 16 October 2018}}</ref>
DESIGN PATTERN IN FUNCTIONAL PROGRAMMING TO BUILD GENERIC TYPES
Monads in functional programming; Monad (programming); Writer monad; Monad laws; Bind (higher-order function); Monad (Haskell); Monadic type; Monad (computer science); Do-notation; Additive monad; MonadPlus; State monad; LiftM2; Free monad; I/O monad; Maybe monad; Generic monadic functions
In functional programming, a monad is a software design pattern with a structure that combines program fragments (functions) and wraps their return values in a type with additional computation. In addition to defining a wrapping monadic type, monads define two operators: one to wrap a value in the monad type, and another to compose together functions that output values of the monad type (these are known as monadic functions).
Monad (nonstandard analysis)         
NON-STANDARD ANALYSIS
Monad (Non-standard analysis); Halo (mathematics); Monad (non-standard analysis)
In nonstandard analysis, a monad (also called halo) is the set of points infinitesimally close to a given point.
Monad (category theory)         
MONOID IN AN ENDOFUNCTOR CATEGORY
Comonad; Cotriple; Tripleable; Eilenberg-Moore algebra; Eilenberg-Moore category; Monadic adjunction; Monadic functor; T-algebra; Eilenberg–Moore algebra; Eilenberg–Moore category; Algebra over a monad; Triple (category theory); Monad (math); Algebra for a monad; Double dualization monad
In category theory, a branch of mathematics, a monad (also triple, triad, standard construction and fundamental construction) is a monoid in the category of endofunctors. An endofunctor is a functor mapping a category to itself, and a monad is an endofunctor together with two natural transformations required to fulfill certain coherence conditions.
Monad (Gnosticism)         
GNOSTICISM
Bythos; Bythus; The Invisible One; The Invisible Spirit
The Monad in Gnosticism is an adaptation of concepts of the Monad in Greek philosophy to Christian gnostic belief systems.
Monad transformer         
FUNCTIONAL PROGRAMMING
Monad transformers
In functional programming, a monad transformer is a type constructor which takes a monad as an argument and returns a monad as a result.
Unicellular         
  • A scanning electron microscope image of a [[diatom]]
  • access-date=2015-11-22}}</ref>
  • Transmission electron microscope image of budding ''[[Ogataea polymorpha]]''
  • ''Paramecium tetraurelia'', a ciliate, with oral groove visible
  • access-date=2015-11-22}}</ref>
ORGANISM THAT CONSISTS OF ONLY ONE CELL
Single celled organisms; Unicellular; Single-celled organism; Single-cell organism; Unicellularity; Single cell organism; One-celled; Single celled organism; Single-celled animal; One-cell organism; Single celled; Single-celled; Single cell organisms; Monad (biology); Single-celled Organisms; Unicellular life; Unicellular organisms; Eukaryotic microorganism; Macroscopic unicellular organism; Single-celled organisms
·adj Having, or consisting of, but a single cell; as, a unicellular organism.

Википедия

Monad